
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');

.vazirmatn {
  font-family: "Vazirmatn", sans-serif; /* Added 'sans-serif' fallback */
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body, html, h1, h2 {
  font-family: "Vazirmatn", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: large;
}

/* General Reset */

body, html {
    margin: 0; /* Changed from 20px to 0 for consistency */
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 20px;
}


/* Container Setup */
.container {
    display: flex;
    height: 100vh; /* Full viewport height */
}

/* Information Column */
.info-column {
    flex: 1; /* Takes up half the width */
    padding: 20px;
    background-color: #ffffff;
    overflow-y: auto; /* Scrollable if content overflows */
}

/* Image Column */
/* Updated Image Column */
.image-column {
    flex: 1; /* Adjusts the width of the image column */
    display: flex; /* Use flexbox for proper alignment */
    justify-content: flex-end; /* Push content to the right */
    padding: 20px;
    overflow-y: auto;
    background-color: #fff;
}

/* Updated Image Scrolling Section */
.image-scroll {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    gap: 20px; /* Space between images */
    align-items: flex-end; /* Align images to the right */
}

.image-scroll img {
    max-width: 90%; /* Keep images from being too large */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

a{
    text-decoration-line:underline;
    color: black;
 }

/* General Reset */



/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
   
}

/* Logo Styling */
.logo a {
    text-decoration: none;
    font-style: normal;
    font-size: large;
}

/* Navigation Styling */
nav {
    display: flex;
    gap: 20px; /* Space between links */
}

nav a {
    text-decoration-line:underline;
  
    font-size: 18px;
    transition: color 0.3s ease;
}


/* Location Styling */
.location h2 {
    margin: 0;
    font-size: 18px;
}

@media (any-hover: hover) {
    h3:hover {
        transform: scale(1.08);
        transition: transform 0.3s ease; /* Smooth transition */
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack logo and nav vertically */
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap; /* Allow wrapping if there are many links */
        gap: 10px;
    }

    .location h2 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .image-column {
        justify-content: center; /* Center images for smaller devices */
    }

    .image-scroll {
        align-items: center; /* Align images centrally on small screens */
    }
}

@media(any-hover: hover){
	a:hover{
		transform: scale(1.08);
	}
}